home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / minix / up1510b.tgz / up1510b / src / lib / posix / fstat.c < prev    next >
C/C++ Source or Header  |  1990-07-19  |  198b  |  11 lines

  1. #include <lib.h>
  2. #include <sys/types.h>
  3. #include <sys/stat.h>
  4.  
  5. PUBLIC int fstat(fd, buffer)
  6. int fd;
  7. struct stat *buffer;
  8. {
  9.   return(callm1(FS, FSTAT, fd, 0, 0, (char *)buffer, NIL_PTR, NIL_PTR));
  10. }
  11.